home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_oth / mawk10 / fpetest2.awk < prev    next >
Text File  |  1991-10-05  |  96b  |  6 lines

  1. BEGIN { 
  2.   x = 100
  3.   do { y = x ; x *= 1000 } while ( y != x )
  4.   print "loop terminated"
  5. }
  6.